type github.com/jackc/pgx/v5/pgtype.float32Wrapper

12 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L309: type float32Wrapper float32
		builtin_wrappers.go#L311: func (w float32Wrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L313: func (w *float32Wrapper) ScanInt64(v Int8) error {
		builtin_wrappers.go#L318: 	*w = float32Wrapper(v.Int64)
		builtin_wrappers.go#L323: func (w float32Wrapper) Int64Value() (Int8, error) {
		builtin_wrappers.go#L331: func (w *float32Wrapper) ScanFloat64(v Float8) error {
		builtin_wrappers.go#L336: 	*w = float32Wrapper(v.Float64)
		builtin_wrappers.go#L341: func (w float32Wrapper) Float64Value() (Float8, error) {
		pgtype.go#L627: 		return &wrapFloat32ScanPlan{}, (*float32Wrapper)(target), true
		pgtype.go#L764: 	return plan.next.Scan(src, (*float32Wrapper)(dst.(*float32)))
		pgtype.go#L1484: 		return &wrapFloat32EncodePlan{}, float32Wrapper(value), true
		pgtype.go#L1623: 	return plan.next.Encode(float32Wrapper(value.(float32)), buf)